QuickOPC User's Guide and Reference
Generic Types for OPC-DA
Extensions > Layered Extensions for .NET > OPC Data Access Extensions > Generic Types for OPC-DA

Following generic types are available for use with OPC Data Access and OPC XML-DA:

These types are used with generic access extensions for OPC items (see Generic Access) and with generic access extensions for OPC properties (see Generic Access). They are also use with the Live Mapping Model.

For example, you can call the EasyDAClient.ReadItem<T> extension method with a given type T, and receive back a DAVtq<T> object with a TypedValue already properly typed as T.

Noted that if the untyped property on the base (non-generic) type has a name like XXXX, the corresponding typed property on the generic type has a name like TypedXXXX. For example, for an untyped property DAVtqResult.Vtq, there is a corresponding typed property DAVtqResult<T>.TypedVtq.

See Also